
[FitterOp_YfromX]
;
#
//This is derived from FindXY table of Nonlinear Curve Fitting;
const nn=_ThisColNum;
range x=!wcol(nn-1);
op_values 0 x ($(nn):end) -s;


[FitterOp_XfromY]
;
#
//This is derived from FindXY table of Nonlinear Curve Fitting; 
const nn=_ThisColNum;
range y=!wcol(nn-1);
op_values 1 y ($(nn):end) -s;

[FitterOp_ZfromXY]
;
#
//This is derived from FindZ table of Nonlinear Surface Fitting;
const nn=_ThisColNum;
op_values 0 ($(nn-2):$(nn-1)) ($(nn):end) -s; 
